home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / borland / jnfb88.zip / PALPRO.ZIP / GREET.C < prev    next >
Text File  |  1987-10-02  |  119b  |  12 lines

  1. #include <stdio.h> 
  2.  
  3. hello() 
  4.         printf("Hello, world!\n"); 
  5.  
  6. main() 
  7.         hello(); 
  8.